home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / xylogics450.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  44 lines

  1. /*
  2.  * xylogics450.h --
  3.  *
  4.  *    Declarations for the Xylogics 450 controller. 
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/xylogics450.h,v 9.1 90/09/11 12:42:44 rab Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _XYLOGICS450
  19. #define _XYLOGICS450
  20.  
  21. #include "devBlockDevice.h"
  22.  
  23. /*
  24.  * Format of the Fs_Device unit number for devices attached to a Xylogics450
  25.  * HBA.  The 16 bits of the Disk unit number are used as follows:
  26.  *
  27.  *  | Bits 15 to 7 | Bits 6 to 5 |   Bits 4 to 3      |    Bits 2 to 0       |
  28.  *  |    Not used  | Ctrl number |   Disk Number      |    Partition  Number |
  29.  * 
  30.  * XYLOGICS_DISK_NUM_FROM_DEVUNIT() - Extract disk number from the Device
  31.  *                      unit number.
  32.  * XYLOGICS_CTRL_NUM_FROM_DEVUNIT() - Extract the controller number from
  33.  *                      the Fs_Deviceunit number.
  34.  */
  35. #define    XYLOGICS_DISK_NUM_FROM_DEVUNIT(unit)    (((unit)>>3)&0x3)
  36. #define    XYLOGICS_CTRL_NUM_FROM_DEVUNIT(unit)    (((unit)>>5)&0x3)
  37. #define    XYLOGICS_PARTITION_NUM_FROM_DEVUNIT(unit)    ((unit)&0x3)
  38.  
  39. extern ClientData DevXylogics450Init _ARGS_ ((DevConfigController *cntrlrPtr));
  40. extern Boolean    DevXylogics450Intr _ARGS_ ((ClientData    clientData));
  41. extern DevBlockDeviceHandle *DevXylogics450DiskAttach _ARGS_ ((Fs_Device *devicePtr));
  42.  
  43. #endif /* _XYLOGICS450 */
  44.